Overload | Description |
---|---|
NMap<TKey,TValue> Constructor() | Creates a new map with a default capacity |
NMap<TKey,TValue> Constructor(Int32) | Creates a new map with the specified capacity. |
NMap<TKey,TValue> Constructor(INIterator<NKeyValuePair<TKey,TValue>>) | Creates a new map that has the remaining items of the specified iterator. Throws an exception if the iterator provides items with duplicate keys. |
NMap<TKey,TValue> Constructor(INSet<NKeyValuePair<TKey,TValue>>) | Creates a new map that has the items of the specified set. Throws an exception if the set provides items with duplicate keys. |